home *** CD-ROM | disk | FTP | other *** search
/ Skunkware 98 / Skunkware 98.iso / src / fileutil / fileutils-3.16.tar.gz / fileutils-3.16.tar / fileutils-3.16 / lib / path-concat.c < prev    next >
C/C++ Source or Header  |  1996-09-30  |  2KB  |  62 lines

  1. /* path-concat.c -- concatenate two arbitrary pathnames
  2.    Copyright (C) 1996 Free Software Foundation, Inc.
  3.  
  4.    This program is free software; you can redistribute it and/or modify
  5.    it under the terms of the GNU General Public License as published by
  6.    the Free Software Foundation; either version 2, or (at your option)
  7.    any later version.
  8.  
  9.    This program is distributed in the hope that it will be useful,
  10.    but WITHOUT ANY WARRANTY; without even the implied warranty of
  11.    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  12.    GNU General Public License for more details.
  13.  
  14.    You should have received a copy of the GNU General Public License
  15.    along with this program; if not, write to the Free Software Foundation,
  16.    Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.  */
  17.  
  18. /* Written by Jim Meyering.  */
  19.  
  20. #ifdef HAVE_CONFIG_H
  21. #include <config.h>
  22. #endif
  23.  
  24. char *malloc ();
  25. char *stpcpy ();
  26.  
  27. /* Concatenate two pathname components, DIR and BASE, in newly-allocated
  28.    storage and return the result.  Return 0 if out of memory.  Add a slash
  29.    between DIR and BASE in the result if neither would contribute one.
  30.    If each would contribute at least one, elide one from the end of DIR.
  31.    Otherwise, simply concatenate DIR and BASE.  In any case, if
  32.    BASE_IN_RESULT is non-NULL, set *BASE_IN_RESULT to point to the copy of
  33.    BASE in the returned concatenation.  */
  34.  
  35. char *
  36. path_concat (dir, base, base_in_result)
  37.      const char *dir;
  38.      const char *base;
  39.      char **base_in_result;
  40. {
  41.   char *p;
  42.   char *p_concat;
  43.  
  44.   p_concat = malloc (strlen (dir) + strlen (base) + 2);
  45.   if (!p_concat)
  46.     return 0;
  47.  
  48.   p = stpcpy (p_concat, dir);
  49.  
  50.   if (*(p - 1) == '/' && *base == '/')
  51.     --p;
  52.   else if (*(p - 1) != '/' && *base != '/')
  53.     p = stpcpy (p, "/");
  54.  
  55.   if (base_in_result)
  56.     *base_in_result = p;
  57.  
  58.   stpcpy (p, base);
  59.  
  60.   return p_concat;
  61. }
  62.